@font-face {
  font-family: 'Oxygen';
  src: url('fonts/Oxygen-Regular.ttf') format('truetype'),
       url('fonts/Oxygen-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oxygen', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  padding-left: 5px;
}

.lm {
  background-color: white; 
}

.vertical-nav {
  padding-top: 30vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  flex-direction: column;
  align-items: center;
  position: fixed;
  right: 30px;
  width: 30vw;
  z-index: 2;
}

.vertical-nav.visible {
  opacity: 1;
  visibility: visible;
  flex-direction: column;
}
.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: right;
  margin-top: 1.5vh;
}

.nav-text {
  height: 2vw;
  right: 5vw;
  font-size: 40px;
  margin-right: 1vw;
}

.nav-item {
  width: 40px;
  height: 40px;
  border: 2px solid gray;
  border-radius: 50%;
  background-color: gray;
  transition: all 0.1s ease;
}

.nav-item.active {
  background-color: white;
  border: 3px solid gray;
}
#me {
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  object-fit: cover; 
  z-index: 1;
  left: 50%;
  transform: translate(-50%,0);   
}

section{
  margin-left: 3vw;
  height: 100vh;
}

.welcome {
  position: relative; 
  margin-bottom: 30vh;
  z-index: 2;
  list-style: none;
  flex-direction: column;
  gap: 10px;
}

ul li {
  position: relative;
  margin: 1vw 0vw;
  margin-right: 4vw;
  list-style: none;
  display: inline-block;
  cursor: pointer;
}
#logo {
  width: 7vw;
  height: auto;
  margin-top: 3vh;
}

.socials {
  padding-top: 25vh;
  font-size: 2vw;
  padding-left: 0.2vw;
}

h1 {
  width: 50vw;
  font-size: 4vw;
}

#about {
  width: 60vw;
  position: relative;
  text-shadow: 1px 1px #ffffff;
  z-index: 2;
}

h2 {
  font-size: 4vw;
  padding-top: 200px;
}

a:hover {
  color:#757575;
}
#work-item img{
  width: 25vw;
  height: auto;
  margin-right: 1px;
  border: none;
}
.work-item-container {
  position: relative;
  display: inline-block;
}

.work-item-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.work-item-container:hover img {
  transform: scale(1.01);
  filter: brightness(1.2);
}

.work-item-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-item-container:hover .overlay {
  opacity: 1;
}

#contact{
  margin-top: 22vw;
}

#contact img {
  position: absolute;
  margin-top: 0vw;
  margin-left: 80vw;
  margin-bottom: 80vw;
  height: 4.5vw;
  width: auto;
}

#email:hover {
  opacity: 0.5;
}

.contact h1

.contact-text {
  padding-top: 2vw;
}

a {
  color: #464646;
  font-size: 1.5;
}

p {
  font-size: 2vw;
}

.footer{
  height:initial;
}
.footer-text{
  text-decoration: none;
  left: 0;
  bottom: 0;
  width: 100%;
  color: rgb(75, 74, 74);
  text-align: left;
}
.footer-text a{
  text-decoration: none;
}
.footer-socials { 
  opacity: 0; 
  visibility: hidden;
}
.footer-socials img{
  position: absolute;
  height: 1vw;
}